home *** CD-ROM | disk | FTP | other *** search
/ Champak 26 (Anniversary Edition) / Volume 26 [Anniversary Edition] - JOGO DISK .iso / DEPOSITO / REmovido / Esportes / 814.swf / scripts / FComboBoxItemSymbol.as < prev    next >
Text File  |  2006-06-13  |  401b  |  15 lines

  1. function FComboBoxItemClass()
  2. {
  3.    this.init();
  4. }
  5. FComboBoxItemClass.prototype = new FSelectableItemClass();
  6. Object.registerClass("FComboBoxItemSymbol",FComboBoxItemClass);
  7. FComboBoxItemClass.prototype.setSize = function(w, h)
  8. {
  9.    super.setSize(w,h);
  10.    this.highlight_mc.onRollOver = function()
  11.    {
  12.       this.controller.controller.selectionHandler(this.controller.itemNum);
  13.    };
  14. };
  15.